home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
boosters.arc
/
XCALENDA.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-10-01
|
410b
|
27 lines
{$IBoDecl}
{$IStrip}
{$IPutStr}
{$ICopies}
{$IBoxul}
{$IDows}
{$ICenter}
{$ICalendar}
var mm, ccyy : integer;
BEGIN
ClrScr;
repeat
PutStr( h,'Enter Month and Year: ', 1,1,112);
ClrEol;
Read( MM, CCYY);
if mm > 0 then
begin
if CCYY < 100 then CCYY := CCYY + 1900;
Calendar ( MM, CCYY, 20, 8);
end;
until mm = 0;
END.